| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489 |
- .crew-detail {
- &__header {
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- gap: 16px;
- margin-bottom: 14px;
- @media (max-width: 768px) {
- flex-direction: column;
- gap: 12px;
- }
- }
- &__info {
- flex: 1;
- min-width: 0;
- }
- &__title {
- font-size: 1.5rem;
- font-weight: 700;
- margin: 0;
- line-height: 1.3;
- }
- &__desc {
- color: var(--muted-foreground);
- font-size: 0.875rem;
- margin-top: 4px;
- }
- &__actions {
- display: flex;
- gap: 8px;
- flex-shrink: 0;
- align-items: center;
- }
- }
- .crew-tabs {
- display: flex;
- gap: 0;
- border-bottom: 1px solid var(--border);
- margin-bottom: 24px;
- @media (max-width: 768px) {
- overflow-x: auto;
- -webkit-overflow-scrolling: touch;
- &::-webkit-scrollbar {
- display: none;
- }
- }
- &__item {
- padding: 14px 24px;
- border: none;
- background: none;
- cursor: pointer;
- font-size: 0.875rem;
- font-weight: 500;
- color: var(--muted-foreground);
- border-bottom: 3px solid transparent;
- margin-bottom: -1px;
- transition: color 0.15s;
- white-space: nowrap;
- letter-spacing: 0.01em;
- &:first-of-type {
- padding-left: 0;
- }
- &:hover {
- color: var(--foreground);
- }
- &--active {
- color: var(--foreground);
- font-weight: 600;
- border-bottom-color: hsl(var(--foreground));
- }
- }
- &__content {
- min-height: 200px;
- }
- }
- .crew-members {
- &__toolbar {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 0;
- @media (max-width: 768px) {
- align-items: flex-start;
- gap: 8px;
- }
- }
- &__subtitle {
- font-size: 1rem;
- font-weight: 600;
- margin: 0;
- }
- &__actions {
- display: flex;
- gap: 8px;
- }
- .studio-page__table-wrap {
- @media (max-width: 768px) {
- overflow-x: auto;
- }
- }
- .studio-page__table {
- @media (max-width: 768px) {
- min-width: 640px;
- }
- }
- }
- .crew-invite {
- margin-bottom: 24px;
- padding: 16px;
- border: 1px solid hsl(var(--border));
- border-radius: 8px;
- @media (min-width: 1024px) {
- max-width: 420px;
- }
- &__legend {
- font-size: 0.875rem;
- font-weight: 600;
- padding: 0 6px;
- }
- &__body {
- display: flex;
- gap: 8px;
- align-items: center;
- @media (max-width: 768px) {
- flex-direction: column;
- }
- }
- &__input {
- flex: 1;
- font-family: monospace;
- font-size: 1rem;
- font-weight: 600;
- letter-spacing: -1px;
- @media (max-width: 768px) {
- width: 100%;
- }
- }
- &__actions {
- display: flex;
- gap: 8px;
- flex-shrink: 0;
- @media (max-width: 768px) {
- width: 100%;
- > button {
- flex: 1;
- }
- }
- }
- }
- .member-search {
- position: relative;
- &__input {
- width: 100%;
- padding: 8px 12px;
- border: 1px solid var(--border-default);
- border-radius: 6px;
- font-size: 0.875rem;
- background: var(--background);
- color: var(--foreground);
- }
- &__results {
- position: absolute;
- top: 100%;
- left: 0;
- right: 0;
- z-index: 10;
- background: var(--background);
- border: 1px solid var(--border);
- border-radius: 6px;
- max-height: 240px;
- overflow-y: auto;
- margin-top: 4px;
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
- }
- &__item {
- display: flex;
- align-items: center;
- gap: 10px;
- padding: 8px 12px;
- cursor: pointer;
- border: none;
- background: none;
- width: 100%;
- text-align: left;
- font: inherit;
- color: var(--foreground);
- &:hover {
- background: var(--accent);
- }
- }
- &__thumb {
- width: 32px;
- height: 32px;
- border-radius: 50%;
- background: var(--muted);
- object-fit: cover;
- }
- &__info {
- flex: 1;
- min-width: 0;
- }
- &__name {
- font-weight: 500;
- font-size: 0.875rem;
- }
- &__email {
- font-size: 0.75rem;
- color: var(--muted-foreground);
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- &__channel {
- font-size: 0.75rem;
- color: var(--primary);
- }
- }
- // ── 위젯 설정 탭 ──────────────────────────────────
- .crew-widget {
- .studio-page__table-wrap {
- @media (max-width: 768px) {
- overflow-x: auto;
- }
- }
- .studio-page__table {
- @media (max-width: 768px) {
- min-width: 640px;
- }
- }
- }
- // ── 세션 탭 ────────────────────────────────────
- .session-active {
- margin-bottom: 32px;
- &__card {
- border: 1px solid var(--border);
- border-radius: 8px;
- padding: 20px;
- background: var(--card);
- @media (max-width: 768px) {
- padding: 14px;
- }
- }
- &__top {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16px;
- @media (max-width: 768px) {
- flex-direction: column;
- align-items: flex-start;
- gap: 10px;
- }
- }
- &__info {
- display: flex;
- align-items: center;
- gap: 12px;
- @media (max-width: 768px) {
- flex-wrap: wrap;
- }
- }
- &__session-title {
- font-size: 1.1rem;
- font-weight: 600;
- }
- &__stats {
- display: flex;
- gap: 24px;
- margin-bottom: 20px;
- padding: 12px 16px;
- background: var(--accent);
- border-radius: 6px;
- @media (max-width: 768px) {
- flex-direction: column;
- gap: 12px;
- }
- }
- &__stat {
- text-align: center;
- @media (max-width: 768px) {
- display: flex;
- align-items: center;
- justify-content: space-between;
- text-align: left;
- }
- &-value {
- font-size: 1.5rem;
- font-weight: 700;
- color: var(--primary);
- @media (max-width: 768px) {
- font-size: 1.25rem;
- }
- }
- &-label {
- font-size: 0.75rem;
- color: var(--muted-foreground);
- margin-top: 2px;
- @media (max-width: 768px) {
- margin-top: 0;
- }
- }
- }
- .studio-page__table-wrap {
- @media (max-width: 768px) {
- overflow-x: auto;
- }
- }
- .studio-page__table {
- @media (max-width: 768px) {
- min-width: 480px;
- }
- }
- }
- .session-consents {
- margin-bottom: 16px;
- &__title {
- font-size: 0.875rem;
- font-weight: 600;
- margin-bottom: 8px;
- }
- &__list {
- display: flex;
- flex-wrap: wrap;
- gap: 8px;
- @media (max-width: 768px) {
- gap: 6px;
- }
- }
- &__item {
- display: flex;
- align-items: center;
- gap: 6px;
- padding: 6px 12px;
- border-radius: 20px;
- font-size: 0.875rem;
- border: 1px solid var(--border);
- &--consented {
- background: hsl(var(--primary) / 0.1);
- border-color: hsl(var(--primary) / 0.3);
- }
- &--pending {
- background: var(--accent);
- }
- }
- &__icon {
- font-size: 0.875rem;
- }
- }
- .session-start {
- border: 2px dashed var(--border);
- border-radius: 8px;
- padding: 32px;
- text-align: center;
- margin-bottom: 0;
- @media (max-width: 768px) {
- padding: 20px;
- }
- &__title {
- font-size: 1.1rem;
- font-weight: 600;
- margin-bottom: 16px;
- }
- &__form {
- display: flex;
- gap: 12px;
- justify-content: center;
- align-items: center;
- max-width: 480px;
- margin: 0 auto;
- @media (max-width: 768px) {
- flex-direction: column;
- }
- }
- &__input {
- flex: 1;
- padding: 8px 12px;
- font-size: 0.875rem;
- @media (max-width: 768px) {
- width: 100%;
- }
- }
- }
- .session-history {
- &__title {
- font-size: 1rem;
- font-weight: 600;
- margin-bottom: 16px;
- }
- .studio-page__table-wrap {
- @media (max-width: 768px) {
- overflow-x: auto;
- }
- }
- .studio-page__table {
- @media (max-width: 768px) {
- min-width: 580px;
- }
- }
- }
- // ── 멤버 아바타 ─────────────────────────────────
- .member-row {
- &__thumb {
- width: 28px;
- height: 28px;
- border-radius: 50%;
- background: var(--muted);
- object-fit: cover;
- vertical-align: middle;
- margin-right: 8px;
- }
- }
|